

* {
animation-name: RAVE;
animation-duration: 3.12s;
animation-iteration-count: infinite;
}

@keyframes RAVE {
  0%   {background-color: red;}
  25%  {background-color: yellow;}
  50%  {background-color: blue;}
  100% {background-color: green;}
}